home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 3 / Gold Medal Software - Volume 3 (Gold Medal) (1994).iso / os2 / te2_130t.arj / TE2INST.001 / Modems / GENV32.INC < prev    next >
Text File  |  1994-03-28  |  1KB  |  43 lines

  1. ; Generic V.32 (or other high speed) modem
  2. ;
  3. ; DIP SWITCH SETTINGS and ONE TIME SETUP:  Please refer to the directions
  4. ; in the file TE2V32.DOC for information on setting up a V.32 or other
  5. ; high speed modem for use with TE/2.  This file provides only the basic
  6. ; framework; you may need to alter the ModemInitStrg and/or setup some
  7. ; new settings in the modem's NRAM.
  8. ;
  9. ; In general, you must:
  10. ;   * Set the baud to the maximum rate for the modem (this file uses 19200,
  11. ;     you may need or want to raise or lower this.
  12. ;   * Make sure that hardware handshaking (CTS and RTS) is enabled at the
  13. ;     modem, either via DIP switch or AT command.
  14. ;   * Make sure that the modem expects a constant computer-to-modem (DTE)
  15. ;     baud rate and that it will negotiate the modem-to-modem (link) rate.
  16. ;   * You should set all dialing directory entry baud rates to the same
  17. ;     baud as is specified in this file.
  18. ;
  19. ; Please, refer to your modem manual for modem specific details.
  20.  
  21. Baud          19200
  22. Parity        N
  23. WordLen       8
  24. StopBits      1
  25.  
  26. XonXoff       BOTH
  27. CtsRts        BOTH
  28. MatchBaud     FALSE
  29.  
  30. ModemInitStrg ATZ^M
  31. ModemDialStrg ATDT
  32. ModemDialSufx ^M
  33. ModemHangStrg ;
  34. DTRHangup     TRUE
  35.  
  36. Connect       CONNECT,19200
  37.  
  38. NoConnect     NO_DIAL_TONE
  39. NoConnect     NO_CARRIER
  40. NoConnect     BUSY
  41. NoConnect     VOICE
  42.  
  43.